home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / IPFRAME.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  48 lines

  1. // ipframe.h : interface of the CInPlaceFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. class CInPlaceFrame : public COleIPFrameWnd
  15. {
  16.     DECLARE_DYNCREATE(CInPlaceFrame)
  17. public:
  18.     CInPlaceFrame();
  19.  
  20. // Attributes
  21. public:
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CInPlaceFrame();
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.     BOOL OnCreateControlBars(CWnd* pWndFrame, CWnd* pWndDoc);
  34.  
  35. protected:  // control bar embedded members
  36.     CToolBar    m_wndToolBar;
  37.     COleResizeBar   m_wndResizeBar;
  38.  
  39. // Generated message map functions
  40. protected:
  41.     //{{AFX_MSG(CInPlaceFrame)
  42.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.